CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 二叉树 遍历

搜索资源列表

  1. 0127遍历二叉树和二叉树线索化

    0下载:
  2. 大学数据结构.遍历二叉树与二叉树的线索化实验报告和结果(THIS IS SHUJUJIEGOU TREE AND CONVERSATION)
  3. 所属分类:数据结构

    • 发布日期:2017-12-19
    • 文件大小:118784
    • 提供者:美杜莎
  1. 新建 WinRAR ZIP 压缩文件

    0下载:
  2. 建立二叉树。有三个步骤,并且进行前序、中序、后序遍历。(Establish two trees, and preorder, middle, and post traversal)
  3. 所属分类:数据结构

    • 发布日期:2017-12-25
    • 文件大小:1024
    • 提供者:星海ok
  1. 1111

    0下载:
  2. 二哥学了二叉树的顺序存储后,被下面一个问题难住了,于是他请你帮他解决。给你一个前序遍历和中序遍历,问顺序存储的数组是什么样子的。 Example Input Format 第一行为前序遍历,第二行为中序遍历,节点个数不超过26. Output Format 输出一行,表示顺序存储的数组,以空格隔开,NULL表示空节点,数组空间不超过1000个节点(The second order storage learned two tree, asked the next questi
  3. 所属分类:Windows编程

    • 发布日期:2017-12-29
    • 文件大小:244736
    • 提供者:-我想静静-
  1. BTree

    0下载:
  2. 遍历二叉树(前序,中序,后序),包括二叉树的创建,此二叉树为链式二叉树,是手动创建的(Traversing the two fork tree (preorder, middle order, post order))
  3. 所属分类:数据结构

    • 发布日期:2017-12-31
    • 文件大小:2361344
    • 提供者:devil123
  1. BinaryTree

    0下载:
  2. 数据结构中二叉树的基础操作 掌握二叉树的链式存储结构及其相关操作的实现 掌握二叉树的先序、中序、后序的递归遍历算法 掌握二叉树的层次遍历非递归算法(Basic operation of two fork tree in data structure)
  3. 所属分类:数据结构

    • 发布日期:2018-01-03
    • 文件大小:614400
    • 提供者:rj501
  1. binary tree

    0下载:
  2. 实现二叉树,实现三种遍历,计算结点数等操作(The realization of the two binary tree)
  3. 所属分类:其他

    • 发布日期:2018-01-03
    • 文件大小:1024
    • 提供者:鼓风机
  1. Project1

    0下载:
  2. 二叉树操作,创建二叉树,初始化二叉数,以及前序遍历,中序遍历,后序遍历。(Two fork tree operation, create two fork tree, initialize two fork number, and preorder traversal, inorder traversal, backward traversal.)
  3. 所属分类:数据结构

    • 发布日期:2018-01-04
    • 文件大小:1582080
    • 提供者:冯特怡斯
  1. 作业6_3

    0下载:
  2. 实现二叉树先序、中序、后序遍历,包含递归算法、非递归算法,以及求树的深度。(To achieve two tree preorder, inorder, post traversal .)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-05
    • 文件大小:196608
    • 提供者:hyungka
  1. 2

    0下载:
  2. 二叉树的简单上机实验,有助于理解二叉树的结构,以及遍历、层级等等。(The simple experiment of two forked trees helps to understand the structure of the two forked tree, as well as the traversal, the hierarchy, and so on.)
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:168960
    • 提供者:JellyBello
  1. Bitree

    0下载:
  2. 已知二叉树的前序和中序,建立标准二叉树,后序遍历输出。(The standard two forked tree is established in the preorder and the output is traversed in the rear order.)
  3. 所属分类:数据结构

    • 发布日期:2018-01-07
    • 文件大小:1024
    • 提供者:Elaine1
  1. 二叉树.cpp

    0下载:
  2. 二叉树的基本操作,二叉树的中序,先序遍历,后序遍历,层次遍历,二叉树家电个数以及二叉树的复制操作的实现(The basic operation of the binary tree)
  3. 所属分类:其他小程序

    • 发布日期:2018-01-07
    • 文件大小:2048
    • 提供者:塔力鹏
  1. 4

    0下载:
  2. 二叉树的基本功能,建立,遍历,递归与非递归(The basic functions of the two forked tree)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:5184512
    • 提供者:Hu_van
  1. untitled1(1)

    0下载:
  2. 二叉树基本构造,二叉树基本遍历等,采用选择语句(The basic structure of the two forked tree)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:1024
    • 提供者:我我我我1
  1. 问题 J

    0下载:
  2. 顺序方式存储的完全二叉树进行重建 题目描述 按顺序方式存储的一棵完全二叉树的结点记录,结点个数为n。根据所输入的顺序结构的结点记录建立二叉树,输出树的先序,中序和后序遍历结果。 注:数字“0”表示不存在此结点,没有孩子结点。 输入 树结点个数n 顺序方式存储的完全二叉树 输出 先序遍历输出 中序遍历输出 后序遍历输出 样例输入 10 1 2 0 3 4 0 0 5 6 7 样例输出 1 2 3 5 6 4 7 5 3 6 2 7 4 1 5 6 3 7
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:16384
    • 提供者:Lucylucykiyomi
  1. 第三次上机作业

    0下载:
  2. 设二叉树结点值为大写字母,输入二叉树的前序遍历和中序遍历序列,生成此二叉树,输出该二叉树的后序遍历和按层次遍历序列。输入某结点值,在二叉树中查找该结点,若该结点存在,则输出从根到该结点的路径,否则给出不存在信息。(A two fork tree node value is capitalized, and the preorder traversal and sequence traversal sequence of the two fork tree is input to generate
  3. 所属分类:数据结构

    • 发布日期:2018-01-10
    • 文件大小:1024
    • 提供者:1 up
  1. 数据结构

    0下载:
  2. 学习数据结构一个比较基础的代码,实现遍历二叉树,插入合并操作。(Learn a relatively basic code of the data structure to traverse the two forked tree and insert the merge operation.)
  3. 所属分类:文章/文档

    • 发布日期:2018-01-11
    • 文件大小:1024
    • 提供者:lixuhao21
  1. tranfer

    0下载:
  2. 二叉树的各类历遍算法的转换,包括前序,中序与后序。(binary tree transfer for students majoring in instruments.)
  3. 所属分类:Windows编程

  1. Binary Tree

    0下载:
  2. 1. 编写建立二叉树的二叉链表存储结构,并用广义表的形式显示; 2. 在二叉树的二叉链表存储基础上,实现二叉树的先序线索链表结构,并显示和存储二叉树的相应的线索链表; 3. 在二叉树的先序线索链表存储结构上,实现求任一个结点的先序的后继和前驱结点的算法; 4. 实现对先序线索二叉树的先序遍历的非递归算法,显示相应的遍历序列。(The establishment of preemptive clue binary tree and preorder traversal)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:倬倬
  1. tree3

    1下载:
  2. 集成了二叉树的基本需求,内含二叉树的循环链表实现的非递归层次遍历和运用链表求树的宽度。(It integrates the basic requirement of two branch tree, which includes the recursive link list implemented by two binary tree, and the width of tree is calculated by linked list.)
  3. 所属分类:文章/文档

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:limited
  1. trees

    0下载:
  2. 这是一个遍历二叉树的python代码,有兴趣的朋友可以下载来看看(This is the python source code used to describe trees. It can be combined with your actual needs.)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:chentrer
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 50 »
搜珍网 www.dssz.com